home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Norton Disk Doctor on Boot.xpl < prev    next >
Text File  |  2001-04-12  |  1KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="5"
  3. "COUNT"="1"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Run on Next Boot"
  5. "NAME"="Run Norton Disk Doctor on Next Boot"
  6. "VERSION"="1.14"
  7. "OSVERSION"="111111"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Run NDD on Next Boot"
  10. "DESCRIPTION 1"="Often the Norton Disk Doctor operation is continuously interrupted by other disk/program activity."
  11. "DESCRIPTION 2"="Checking the box will cause NDD to start on Bootup; if NDD is not desired on boot, it may be stopped after boot."
  12. "DESCRIPTION 3"="NOTE: This plugin is designed to run only on the next restart; whenever you want to run NDD on boot, re-apply the plugin.  This is for the 32-bit GUI Norton Disk Doctor, not the command line version." 
  13. "AUTHOR"="CptSiskoX"
  14. "CONTACTURL"="http://members.fortunecity.com/computingx/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18.  
  19. sP="HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx\"
  20. sV1="Norton Disk Doctor\"
  21. v="Title" 'Stg
  22. v1="Flags" 'Dwrd
  23. v2="Cmd" 'Stg
  24.  
  25.  
  26. Sub Plugin_Initialize 
  27. End Sub
  28.  
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  if ElementIndex=1 then
  35.     Call RegWriteValue(sP&v,"NDD at Startup",1)
  36.     Call RegWriteValue(sP&v1,"3",2)
  37.     Call RegWriteValue(sp&sv1&v2,"NDD32",1)
  38.  
  39.     Call Restart()
  40.  end if
  41. End Sub
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.  
  49.